home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ctb100t / windows.h < prev    next >
Text File  |  1987-08-28  |  2KB  |  40 lines

  1. /****************************************************************************
  2.  *                                windows.h                                 *
  3.  *                                                                          *
  4.  *   Basic window header for the C Tool Box.   This header contains the     *
  5.  *   box type definition structure.                                         *
  6.  *                                                                          *
  7.  *                                                                          *
  8.  *                           Copyright (c) 1987                             *
  9.  *                            David A.  Miller                              *
  10.  *                            Unicorn Software                              *
  11.  *                                                                          *
  12.  ****************************************************************************/
  13.  
  14.  
  15.  
  16. typedef struct
  17.    {
  18.       int hlchar;
  19.       int vlchar;
  20.       int ulchar;
  21.       int urchar;
  22.       int llchar;
  23.       int lrchar;
  24.       int bfore;       /*  border foreground color */
  25.       int bback;       /*  border background color */
  26.       int ffore;       /*  foreground fill color  */
  27.       int fback;       /*  background fill color  */
  28.       int row;         /*  upper left corner row  */
  29.       int col;         /*  upper left corner column */
  30.       int height;      /*  height of box in rows  */
  31.       int width;       /*  width of box in characters */
  32.       unsigned *crt;   /*  location of saved widow background */
  33.    } BOX ;
  34.  
  35. BOX *makebox(), *copybox();
  36.  
  37.  
  38.  
  39.  
  40.